home *** CD-ROM | disk | FTP | other *** search
/ PC World 2006 November / PCWorld_2006-11_cd.bin / domacnost a kancelar / findgraph / fgraph.exe / {app} / TestVC / MainDoc.h < prev    next >
C/C++ Source or Header  |  2002-08-09  |  2KB  |  62 lines

  1. // MainDoc.h : interface of the CMainDoc class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4.  
  5. #if !defined(AFX_MAINDOC_H__51F9B1EB_CAEF_11D4_A5D3_444553540000__INCLUDED_)
  6. #define AFX_MAINDOC_H__51F9B1EB_CAEF_11D4_A5D3_444553540000__INCLUDED_
  7.  
  8. #if _MSC_VER > 1000
  9. #pragma once
  10. #endif // _MSC_VER > 1000
  11.  
  12. class CRectItem;
  13.  
  14.  
  15. class CMainDoc : public COleDocument
  16. {
  17. protected: // create from serialization only
  18.     CMainDoc();
  19.     DECLARE_DYNCREATE(CMainDoc)
  20.  
  21. // Attributes
  22. public:
  23.     static CLIPFORMAT m_cfPrivate;
  24.     CSize m_sizeDoc;
  25.     CSize& GetDocumentSize();
  26.     BOOL m_bNeedUpdate;
  27.  
  28. // Operations
  29. public:
  30.     CRectItem* CreateItem();    // this document only stores CRectItems
  31.     void DeleteItem(CRectItem* pItem);
  32.     void AdjustItemPosition(CRectItem* pItem);
  33.  
  34. // Overrides
  35. public:
  36.     virtual ~CMainDoc();
  37.     virtual BOOL OnNewDocument();
  38.     virtual void Serialize(CArchive& ar);
  39.  
  40. #ifdef _DEBUG
  41.     virtual void AssertValid() const;
  42.     virtual void Dump(CDumpContext& dc) const;
  43. #endif
  44.  
  45. protected:
  46.  
  47. // Generated message map functions
  48. protected:
  49.     //{{AFX_MSG(CMainDoc)
  50.         // NOTE - the ClassWizard will add and remove member functions here.
  51.         //    DO NOT EDIT what you see in these blocks of generated code !
  52.     //}}AFX_MSG
  53.     DECLARE_MESSAGE_MAP()
  54. };
  55.  
  56. /////////////////////////////////////////////////////////////////////////////
  57.  
  58. //{{AFX_INSERT_LOCATION}}
  59. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  60.  
  61. #endif // !defined(AFX_MAINDOC_H__51F9B1EB_CAEF_11D4_A5D3_444553540000__INCLUDED_)
  62.